home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 1996 February / Software of the Month Club 1996 February.iso / pc / os2 / pmpage / paged.txt < prev    next >
Encoding:
Text File  |  1996-01-08  |  5.1 KB  |  142 lines

  1. Super Pager for OS/2 Version 1.0 Rev. 4
  2. ---------------------------------------
  3. This OS/2 program will send a alphanumic message to a pager.  Some of
  4. the features are:
  5.     o Supports TAP(Telocator Alphanumeric Protocol)
  6.     o Supports scripts if pager system does not support TAP.
  7.     o Page by name or number.
  8.     o Client/Server application.
  9.     o Standalone PM Pager.  PM Pager will also act as a client to
  10.       the pager server
  11.     o Delayed pages.
  12.         - Delay by minutes.
  13.         - Page at a pictular date and time.
  14.     o Log file with date, time and who was paged.
  15.     o Remembers pages after server has been restarted.
  16.     o C Source code for Client, add pageing to your own programs.
  17.     o Uses name pipes.  Make you programs page over the network.
  18.     o Works with callos2(Caller ID for os/2).  Pages you with who called
  19.  
  20. What you need:
  21.     o A Hayes or compatible modem
  22.  
  23. ------------------------------------------------------------------------------
  24. ------                     Important Inforation                         ------
  25. ------------------------------------------------------------------------------
  26. This is a ShareWare product.  The ShareWare version is limited to 30 characters.
  27. Please support the shareware concept and register by sending $40 to the address
  28. below.
  29.  
  30. Borghese Software Engineering
  31. 981 Hillsdale Dr.
  32. Columbus, OH  43224
  33.  
  34. Please make check Payable to:     Brent K. Borghese
  35.  
  36. If you have any comments please send them to: brent@dispatch.com
  37. ------------------------------------------------------------------------------
  38. ------                  End of Important Inforation                     ------
  39. ------------------------------------------------------------------------------
  40.  
  41.  
  42. Description of included files
  43. -----------------------------
  44.   page.exe         - Command line client for pager server.
  45.   paged.exe        - Pager server
  46.   pmpage.exe       - Standalone PM Pager, PM pager client to pager server
  47.   page.ini         - Setup file for pager system
  48.   file_id.diz      - Description file
  49.   history.txt      - History of modification to Super Pager
  50.   page.cpp         - C Source for client interface 
  51.   page.h           - C header file for client interface 
  52.   paged.scr        - Sample modem script file for non TAP pager systems
  53.   paged.txt        - This text file 
  54.  
  55. Installing super pager
  56. ----------------------
  57. Unzip files to a directory called \PAGEOS2
  58.  
  59. How to setup:
  60. -------------
  61.     There are two configuration files, the first is called:  PAGE.INI.
  62. The first line of the file must have the com port, baud rate, parity,
  63. word lenth, stop bits and pager system type.
  64. Example:
  65.         COM1:1200,E,7,1 TAP
  66.             or
  67.         COM1:1200,E,7,1 SCRIPT
  68.  
  69. The next line must have the pager system phone number.
  70. Example:
  71.         555-1234
  72. The next line must have the modem init string.  This line is very important.  With some older
  73. modem or off brands they will not work right tell it has been setup correctly.  The modem will
  74. need to be setup to hangup when DTR is droped(&D2) and the host baud rate to match connect
  75. speed(S37=0).
  76. Example for Hayes 28.8 V.34
  77.         AT&Q0S36=1S37=0S48=128N0B1&D2
  78. Example for Hayes 2400
  79.         ATL0
  80. The lines following have pager number and names.  They are in the format of:
  81.         PAGER_NUMBER NAME_OF_PERSON
  82. Example:
  83.         555-2051 Brent Borghese
  84.         555-2092 Darren Smith
  85.         555-2053 Janis Taler
  86.         555-2124 Mr. Bill
  87.  
  88.         If your system does not support the TAP(System Type) protocol the second
  89. configuration file is: "PAGE.SCR".  It is used to send the pages to your
  90. pager system. Not all pager systems are the same so some tuneing might
  91. need to be done.  The file is in the format of Send String, Expect String.
  92. There are some esc sequences in the send string, they are shown below:
  93.         \r      - Sends a return(0x0D)
  94.         \n      - Sends a return and a line feed(0x0D,0x0A)
  95.         %i      - Sends the persons pager ID
  96.         %m      - Sends the message
  97.         %p      - Sends the systems phone number
  98.         %d      - Two second pause
  99.         ^a      - Sends a control charature, the charature can be form a-z
  100.  
  101. There is one esc sequences in the expect string, it is shown below:
  102.         \r      - Expect a return(0x0D)(^m does same thing)
  103.         ^a      - Expect a control charature, the charature can be form a-z
  104.  
  105. Here is a sample script:
  106. AT DT %p\r
  107. CONNECT
  108. \r
  109. \r
  110. M\r
  111. RETURN.
  112. %i\r
  113. Message, then RETURN.
  114. %m\r
  115. then RETURN.
  116.  
  117.  
  118.  
  119. Log file
  120. --------
  121. All pages are loged to: paged.log.   Note that only the pager server(paged.exe)
  122. logs to the log file.
  123.  
  124. Using Standalone PM Pager
  125. -------------------------
  126. Run pmpage.exe from the pager directory. Select name from the list, enter
  127. the message and click page button. If the pager server is running the PM pager
  128. will send a message to the server and the server will page the person.
  129.  
  130. Using pager server
  131. --------------------
  132. Run paged.exe from the pager directory. Once the pager server is running the
  133. pager clients can be run to submit pages to the server.  There are two clients
  134. included a command line version and a pm version.
  135.  
  136. Using PM Pager as a client to the server
  137. ----------------------------------------
  138. Run pmpage.exe from the pager directory. Select time for page to occur and
  139. select name from the list, enter the message and click page button.
  140.  
  141.  
  142.